Character CharacterGap

Gets or sets the gap between two characters. The gap will be applied in front of the selected character

public float CharacterGap {get;Set}

 

Return value

float The gap between the characters

 

Example

Copy
TextShape text = new TextShape();

Character character = new Character();
character.CharacterUnicode = 'B';
character.Height = 5;
character.FontName = "Arial";
character.FontStyle = FontStyle.Regular;

character.CharacterGap = 1.2f;

text.Characters.Add(character);